home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / getline / testgl.c < prev   
C/C++ Source or Header  |  1995-05-03  |  257b  |  18 lines

  1. #include <stdio.h>
  2. #include "getline.h"
  3.  
  4. main()
  5. /* 
  6.  * just echo user input lines, letting user edit them and move through
  7.  * history list
  8.  */
  9. {
  10.     char *p;
  11.  
  12.     do {
  13.     p = getline("PROMPT>>>> ");
  14.     gl_histadd(p);
  15.     fputs(p, stdout);
  16.     } while (*p != 0);
  17. }
  18.